home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-404.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  85 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12441);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2003-0963");
  13.  
  14.  name["english"] = "RHSA-2003-404: lftp";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated lftp packages are now available that fix a buffer overflow
  21.   security vulnerability.
  22.  
  23.   lftp is a command-line file transfer program supporting FTP and HTTP
  24.   protocols.
  25.  
  26.   Ulf H├ñrnhammar discovered a buffer overflow bug in versions of lftp up to
  27.   and including 2.6.9. An attacker could create a carefully crafted
  28.   directory on a website such that, if a user connects to that directory
  29.   using the lftp client and subsequently issues a \'ls\' or \'rels\' command, the
  30.   attacker could execute arbitrary code on the users machine. The Common
  31.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  32.   CAN-2003-0963 to this issue.
  33.  
  34.   Users of lftp are advised to upgrade to these erratum packages, which
  35.   contain a backported security patch and are not vulnerable to this issue.
  36.  
  37.   Red Hat would like to thank Ulf H├ñrnhammar for discovering and alerting us
  38.   to this issue.
  39.  
  40.  
  41.  
  42.  
  43. Solution : http://rhn.redhat.com/errata/RHSA-2003-404.html
  44. Risk factor : High';
  45.  
  46.  script_description(english:desc["english"]);
  47.  
  48.  summary["english"] = "Check for the version of the lftp packages";
  49.  script_summary(english:summary["english"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  54.  family["english"] = "Red Hat Local Security Checks";
  55.  script_family(english:family["english"]);
  56.  
  57.  script_dependencies("ssh_get_info.nasl");
  58.  
  59.  script_require_keys("Host/RedHat/rpm-list");
  60.  exit(0);
  61. }
  62.  
  63. include("rpm.inc");
  64. if ( rpm_check( reference:"lftp-2.4.9-2", release:"RHEL2.1") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69. if ( rpm_check( reference:"lftp-2.6.3-5", release:"RHEL3") )
  70. {
  71.  security_hole(0);
  72.  exit(0);
  73. }
  74.  
  75. if ( rpm_exists(rpm:"lftp-", release:"RHEL2.1") )
  76. {
  77.  set_kb_item(name:"CAN-2003-0963", value:TRUE);
  78. }
  79. if ( rpm_exists(rpm:"lftp-", release:"RHEL3") )
  80. {
  81.  set_kb_item(name:"CAN-2003-0963", value:TRUE);
  82. }
  83.  
  84. set_kb_item(name:"RHSA-2003-404", value:TRUE);
  85.